- 该篇文章来自于 SOSP2019 的论文 KVell: the Design and Implementation of a Fast Persistent Key-Value Store
TinyKV 学习笔记
- PingCAP Talent Plan
- 记录一些学习路径中的关键知识点
MatrixKV: Reducing Write Stalls and Write Amplification in LSM-tree Based KV Stores with Matrix Container in NVM
- 该篇文章来自于 ATC2020 上非易失主题下的论文 MatrixKV: Reducing Write Stalls and Write Amplification in LSM-tree Based KV Stores with Matrix Container in NVM
Series Six of Basic of Persistence - Log-structured File System
- 本篇为持久化技术的基础篇系列第六篇(日志结构化文件系统),有对应的原论文 SOSP1991 - The design and implementation of a log-structured file system
- 可以参考 知乎: Logician - Log-structured File System
Series Five of Basic of Persistence - Locality and The Fast File System
- 本篇为持久化技术的基础篇系列第五篇(局部性和 Fast File System),将以 FFS 为例,可以参考原版论文 A fast file system for UNIX
Series Four of Basic of Persistence - File System Implementation
- 本篇为持久化技术的基础篇系列第四篇(文件系统实现),将以 vsfs 为例。
Series Three of Basic of Persistence - Files and Directories
- 本篇为持久化技术的基础篇系列第三篇(文件与目录)。
Series Two of Basic of Persistence - Hard Disk Drives And RAID
- 本篇为持久化技术的基础篇系列第二篇(硬盘设备和磁盘阵列),即一些硬件设备基础知识以及基础的 IO 处理相关知识,可以结合之前的一篇博客 Flavor of IO。
Series One of Basic of Persistence - I/O Devices
- 本篇为持久化技术的基础篇系列第一篇(I/O 设备),即一些硬件设备基础知识以及基础的 IO 处理相关知识,可以结合之前的一篇博客 Flavor of IO。
存储系统中的一致性
- 源于最近的项目里涉及到的一致性问题,此处是指存储系统内部的数据一致性。
- 注意和 分布式系统中的一致性以及协同算法 进行区分,此处更多的是多层存储之间的一致性。
- 主要会先了解记录常见的存储系统中的数据一致性保证,如文件系统、数据库等;再分析项目中是否真正数据存在一致性问题。
0%